home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19990725-20000114 / 000304_news@columbia.edu _Fri Nov 26 13:33:12 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id NAA21041
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Fri, 26 Nov 1999 13:33:11 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id NAA18060
  7.     for kermit.misc@watsun.cc.columbia.edu; Fri, 26 Nov 1999 13:29:19 -0500 (EST)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: C-Kermit 7.0 and text file transfer on RH 6.1
  11. Date: 26 Nov 1999 18:29:17 GMT
  12. Organization: Columbia University
  13. Message-ID: <81mjht$hk9$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <spam-2611991248410001@csgmac.chem.utoronto.ca>,
  17. David Stone <spam@address.invalid> wrote:
  18. : I hate following myself up but...
  19. : In article <spam-2611991238050001@csgmac.chem.utoronto.ca>,
  20. : spam@address.invalid (David Stone) wrote:
  21. : > >  1. Do the Unix lines really end with LF?
  22. : > 
  23. : > Is there a utility that will let me check this on the Linux box?
  24. : The file on the remote host has EOL = LF.  For some reason, these are
  25. : not getting converted to CR during the actual transfer.
  26. It looks like C-Kermit is sending in binary mode, so the Mac is getting
  27. only LF, not CRLF, and is stripping LFs.
  28.  
  29. I'm not sure why C-Kermit would be sending in binary mode in this case,
  30. but try this to force text mode:
  31.  
  32.   set transfer mode manual
  33.   set file type text
  34.  
  35. And then send the file.
  36.  
  37. - Frank